home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / dictionaries-common / dc-debconf-select.pl next >
Text File  |  2008-06-04  |  6KB  |  162 lines

  1. # -------------------------------------------------------------------------------
  2. # dc-debconf-select.pl:
  3. #  This file will be added to end of dictionaries-common.config-base
  4. #  to make dictionaries-common.config, as well as installed under
  5. #  /usr/share/dictionaries-common for single ispell dicts/wordlists use
  6. # -------------------------------------------------------------------------------
  7.  
  8. sub dico_get_packages (){
  9.   # Get list of packages sharing the question
  10.   my $class    = shift;
  11.   my $question = "shared/packages-$class";
  12.  
  13.   my ($errorcode,$packages) = metaget ($question, "owners");
  14.   return [ split (/\s*,\s*/, $packages) ] unless $errorcode;
  15. }
  16.  
  17. sub dico_parse_languages (){
  18.   # Get a hash reference of package -> list of (e)languages provided by package
  19.   my $class    = shift;
  20.   my $variant  = shift;
  21.   my $packages = shift;
  22.   my %tmphash  = ();
  23.  
  24.   die "No variant (languages|elanguages) string supplied\n" unless $variant;
  25.  
  26.   $packages = &dico_get_packages($class) unless $packages;
  27.  
  28.   foreach $pkg ( @$packages ){
  29.     my ($errorcode, $entry ) = metaget("$pkg/$variant", "default");
  30.     unless ( $errorcode ){
  31.       $entry =~ s/^\s+//;
  32.       $entry =~ s/\s+$//;
  33.       $tmphash{$pkg} = $entry;
  34.     }
  35.   }
  36.   return \%tmphash;
  37. }
  38.  
  39. sub dico_get_all_choices (){
  40.   # Get $choices and $echoices parallel lists sorted after $echoices and formatted for debconf
  41.   my $class       = shift;
  42.   my $languages   = shift;
  43.   my $debug       = 1 if exists $ENV{'DICT_COMMON_DEBUG'};
  44.   my %mappinghash = ();
  45.   my $debug_prefix = "[dico_get_all_choices]";
  46.  
  47.   $languages   = &dico_parse_languages($class,"languages") unless $languages;
  48.  
  49.   my $elanguages  = &dico_parse_languages($class,"elanguages",[ keys %$languages ]);
  50.  
  51.   if ( $debug ){
  52.     print STDERR "-------- $debug_prefix start --------\n";
  53.     my $langlist  = join(', ',sort keys %{$languages});
  54.     my $elanglist = join(', ',sort keys %{$elanguages});
  55.     print STDERR " * Packages with languages: $langlist\n"  if $debug;
  56.     print STDERR " * Packages with elanguages: $elanglist\n" if $debug;
  57.   }
  58.  
  59.   foreach $pkg ( keys %$languages ){
  60.     my @langs  = split(/\s*,\s*/, $languages->{$pkg});
  61.     my @elangs = @langs;
  62.     if ( exists $elanguages->{$pkg} ){
  63.       my @tmp = split(/\s*,\s*/, $elanguages->{$pkg});
  64.       if ( $debug ){
  65.     print STDERR " langs: $#langs, "  . join(', ',@langs)  . "\n";
  66.     print STDERR " tmp:   $#tmp, "    . join(', ',@tmp)    . "\n";
  67.       }
  68.       @elangs = @tmp if ( $#langs == $#tmp );
  69.     }
  70.     foreach $index ( 0 .. $#langs ){
  71.       $mappinghash{$langs[$index]} = $elangs[$index];
  72.     }
  73.   }
  74.   my $echoices = join(', ', sort {lc($a) cmp lc($b)} values %mappinghash);
  75.   my $choices  = join(', ',
  76.               sort {lc($mappinghash{$a}) cmp lc($mappinghash{$b})}
  77.               keys %mappinghash);
  78.   if ( $debug ){
  79.     print STDERR "- Choices:\n[$choices]\n";
  80.     print STDERR "- Echoices:\n[$echoices]\n";
  81.     print STDERR "-------- $debug_prefix end --------\n";
  82.   }
  83.   return $choices, $echoices;
  84. }
  85.  
  86. sub dc_debconf_select (){
  87.   my $class       = shift;
  88.   my $priority    = shift;
  89.   my $question    = "dictionaries-common/default-$class";
  90.   my $packages    = &dico_get_packages($class);
  91.   my $debug       = 1 if exists $ENV{'DICT_COMMON_DEBUG'};
  92.   my $reconfigure = 1 if exists $ENV{'DEBCONF_RECONFIGURE'};
  93.   my $echoices;
  94.   my @oldchoices  = ();
  95.   my %newchoices  = ();
  96.   my %title       = ('ispell'   => "Dictionaries-common: Ispell dictionary",
  97.              'wordlist' => "Dictionaries-common: Wordlist dictionary"
  98.              );
  99.  
  100.   return unless $packages;
  101.  
  102.   # Get new base list of provided languages
  103.   my $languages = &dico_parse_languages($class,"languages",$packages);
  104.   foreach $pkg ( keys %$languages ) {
  105.     foreach $lang ( split(/\s*,\s*/, $languages->{$pkg}) ){
  106.       $newchoices{$lang}++;
  107.     }
  108.   }
  109.   my $choices = join (', ', sort {lc($a) cmp lc($b)} keys %newchoices);
  110.  
  111.   # Read current value of default ispell dict / wordlist. No need to have
  112.   # critical priority if is in the new list or set to manual. Otherwise
  113.   # ask with critical priority, name for current value is changed or
  114.   # something wrong happened.
  115.   my $curval  = get ($question) || "undefined";
  116.   unless ( $priority ){
  117.     if ( $curval =~ /^Manual.*/ or exists $newchoices{$curval} ){
  118.       $priority = "medium";     #
  119.     } else {
  120.       $priority = "medium"; # No good value, ask. Do not change!!
  121.     }
  122.   }
  123.  
  124.   # Get old list of provided languages
  125.   @oldchoices = split(/\s*,\s*/,metaget ($question, "choices-c"));
  126.   pop @oldchoices;            # Remove the manual entry
  127.   my $oldchoices = join (', ', sort {lc($a) cmp lc($b)} @oldchoices);
  128.   print STDERR
  129.     "** dc_debconf_select: $class, $priority, $question\n" .
  130.     "   new choices:[$choices]\n   old choices:[$oldchoices]\n" if $debug;
  131.  
  132.   # May ask question if there is no match
  133.   if ( scalar %newchoices ) {
  134.     fset ($question, "seen", "false") if ( $choices ne $oldchoices);
  135.     my ( $errorcode, $seen ) = fget($question, "seen");
  136.     if ( $seen eq "false" or $reconfigure ){
  137.       ($choices, $echoices ) = &dico_get_all_choices($class,$languages);
  138.       subst ($question, "choices", $choices);
  139.       subst ($question, "echoices", $echoices);
  140.     }
  141.     input ($priority, $question);
  142.     title ($title{$class});
  143.     go ();
  144.     subst ($question, "echoices", $choices); # Be backwards consistent
  145.   }
  146.  
  147.   # If called from dictionaries-common.config, check actual values in debug mode
  148.   if ( $debug && $fromdcconfig ){
  149.     print STDERR "** dictionaries-common.config: Checking some real values for $question\n";
  150.     print STDERR "   Real new Choices-C: " . metaget ($question, "choices-c") . "\n";
  151.     print STDERR "   Real new value: "  . get ($question) . "\n";
  152.     print STDERR "---\n";
  153.   }
  154. }
  155.  
  156. # Local Variables:
  157. # perl-indent-level: 2
  158. # End:
  159.  
  160. 1;
  161.  
  162.